/* 
  body {
    font-family: Arial, sans-serif;
    background-color: #f3f4f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
   */


#modal-encuestas {
  /* opacity: .5; */
  height: 100vh;
  position: fixed;
  width: 100%;
  background-color: rgba(226, 232, 240, 0.5);
  z-index: 9999;
  top: 0;
  left: 0;
  margin: auto;
}

.container-encuestas {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 999;
}

.form-card {
  background-color: white;
  border-radius: 10px;
  padding: 3rem;
  width: 90%;
  max-width: 500px;
  min-height: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.form-card h2 {
  font-size: 14px !important;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 600;
}

label {
  font-size: 12.5px;
  color: black;
  display: block;
  margin-bottom: 10px;
}

.pregunta_encuesta {
  color: rgb(14, 13, 13);
  font-weight: 600;
}
#contenedor__pregunta-respuestas{
  min-height: 170px;
}
.radio-group {
  margin-bottom: 20px;
  min-height: 120px;
}

.radio-option {
  margin-bottom: 10px;
}

.radio-option input {
  margin-right: 10px;
}

.section-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

#button-save {
  border: none;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 400;
  flex-wrap: wrap;
  font-size: 16px;
  transition-duration: .3s;
  color: black;
  transition-property: background-color;
  background-color: #f0f8ff;
}

#button-save img {
  width: auto;
  max-width: 37px !important;
  margin-top: -2px;
}

#button-cancel {
  position: absolute;
  top: 7px;
  right: 7px;
  height: 2rem;
  width: 2rem;
  padding: 1.5px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
  background-color: #f0f8ff;
}

#button-cancel img {
  display: block;
  margin: auto;
  height: 50%;
  width: 50%;
  stroke: #ff0000;
}

.controlador_botones-paginador-encuesta {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
}

.controlador_botones-paginador-encuesta span {
  padding: 4px;
  width: auto;
  height: 32px;
  border-radius: 5px;
  background-color: #14a14e;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
}

#numero_pagina {
  height: 28px;
  width: 28px;
  color: #14a14e;
  background-color: #f0f3f7;
}

.icono_estado-notificacion {
  padding: 25px;
  height: 208px;
  width: 208px;
  border-radius: 50%;
  color: white;
  text-align: center;
  display: flex !important;
  margin: auto;
  align-items: center;
  justify-content: center;
  font-size: 75px;
}

#ver-encuestas {
  padding: 5px;
  display: flex;
  gap: 4px;
  align-items: center;
  height: 32px;
  background-color: aliceblue;
  font-size: 16px;
  color: black;
  font-weight: 600;
}

#encuesta_siguiente img {
  width: auto;
  max-width: 37px !important;
}

#encuesta_anterior img {
  width: auto;
  max-width: 37px !important;
  transform: rotate(180deg);
}